home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / telecomm / sticpsrc.lzh / SOURCE.ARC / AMIGA.H < prev    next >
C/C++ Source or Header  |  1990-03-11  |  294b  |  11 lines

  1. /* Asynch controller control block */
  2. #define MAX_STORE 1024
  3. struct asy {
  4.     int speed;        /* Line speed */
  5.     char *tty;
  6.     char recv_buf[MAX_STORE];
  7. };
  8. extern struct asy asy[];
  9. extern unsigned nasy;        /* Actual number of asynch lines */
  10. #define ASY_MAX 1        /* One asynch port on the Amiga */
  11.